home *** CD-ROM | disk | FTP | other *** search
/ Practical Web Pages 2004 September / PracticalWebPages-WPG13-09-2004-Coverdisc.iso / pc / Software / Toolkit / Sothink SWF Quicker 1.5 / data1.cab / Public_Files / Classes / Object.as < prev    next >
Encoding:
Text File  |  2004-06-14  |  1.1 KB  |  13 lines

  1. class Object
  2. {
  3.     var _proto__                                                         // It refers to the prototype property of the constructor function that created myObject.
  4.  
  5.     function Object(value)                                               // Constructor. It creates a new Object object.
  6.     function addProperty(prop, getFunc, setFunc)                         // It creates a getter/setter property. 
  7.     function registerClass()                                             // It associates a movie clip symbol with an ActionScript object class. 
  8.     function toString()                                                  // It converts the specified object to a string and returns it.
  9.     function unwatch(prop)                                               // It removes a watchpoint that Object.watch() created. 
  10.     function valueOf()                                                   // It returns the primitive value of the specified object.
  11.     function watch(prop, callback, userData)                             // It registers an event handler to be invoked when a specified property of an ActionScript object changes. 
  12. }
  13.